// Tag Content Studio Resource: InputDefaultText.js

// clear default text for a form field
function cdt(f, t) { if (f.value != "") f.value = ""; }

// reset the default text for a form field
function rdt(f, t) { if (f.value == "") f.value = t; }